@charset "utf-8";

.menu {
	z-index: 999;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	background: #41df75;
	background: -moz-linear-gradient(top, #41df75 0%, #08641e 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #41df75), color-stop(100%, #08641e));
	background: -webkit-linear-gradient(top, #41df75 0%, #08641e 100%);
	background: -o-linear-gradient(top, #41df75 0%, #08641e 100%);
	background: -ms-linear-gradient(top, #41df75 0%, #08641e 100%);
	background: linear-gradient(to bottom, #41df75 0%, #08641e 100%);
}
.menu * {
  box-sizing: border-box;
}
.menu .ul-list {
  display: flex;
}

.menu .ul-list li {
  position: relative;
  margin-left: 1px;
 }

.menu .ul-list  li:hover,.hover{
	background: #28793f;
}
.menu .ul-list  li:hover  a,.hover  a{
    color: #a5e8ba;
}
.menu .ul-list  li:last-child {
  border-right: none;
}

.menu .ul-list li a {
  padding: 0 28px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  color: #fff;
 }

/*.menu .ul-list  li  span {
  color: #fff;
  font-size: 14px;
    height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
}*/
.menu .ul-list li:hover .ol-list {
  display: block;
}
.menu .ol-list {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 999;
  background: #063e14;
  width: 100%;
}
.menu .ol-list  li  a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  height: 35px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #222;
  justify-content: center;
    padding: 0;  
}